home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / include / wa.h < prev    next >
C/C++ Source or Header  |  1992-12-01  |  176b  |  14 lines

  1. #ifndef _WA_H_
  2. #define _WA_H_
  3.  
  4. /* Word acceptor structure: */
  5.  
  6. typedef struct {
  7.   int start, fail, state;
  8.   int nstates, ngens;
  9.   char **genlist;
  10.   int **action;
  11. } wa;
  12.  
  13. #endif
  14.